Código fuente de 'Link Popularity.asp'

<html>
<head>
<title>Buscador de popularidad. Link popularity. Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>

<body style="font-family: Arial; font-size: 11pt; text-align:center">
<base target="_blank">

<p align="center"><b><font size="3">Link popularity</font></b></p>
<form action="Link Popularity.asp" method=post> 
<table border=0 cellpadding=5><tr> 
Find links to your site or competitor<BR> 
<td align=center> 
http://<input size=35 name=url><BR> 
<select name="se"> 
<option value="2">Google 
</select> 
<input type=submit value="Encuentra enlaces"> 
</td></tr> </table> 
</form> 


<%  
AA=request.form("url")  
AA=lcase(AA)  
AA=server.urlencode (AA) 


if request.form ("se")="1" then  
response.redirect("http://www.altavista.com/web/results?itag=wrx&q=link%3A" & AA & "&kgs=1&kls=0")
'response.redirect("http://altavista.digital.com/cgi-bin/query?pg=q&kl=XX&q=link%3A" & AA & "+-+host%3A" & BB & "&search=Search")  
end if  

if request.form ("se")="2" then  
response.redirect("http://www.google.com/search?as_lq=" & AA & "&btnG=Search") 
end if 

%>
</body>
</html>